home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: comp.sys.amiga.programmer
- Path: mozart.unx.sas.com!walker
- From: walker@chang.unx.sas.com (Doug Walker)
- Subject: Re: Is this a SAS/C bug or have I coded it wrong?
- Originator: walker@chang.unx.sas.com
- Sender: news@unx.sas.com (Noter of Newsworthy Events)
- Message-ID: <DKoCGB.MLF@unx.sas.com>
- Date: Thu, 4 Jan 1996 20:48:10 GMT
- X-Nntp-Posting-Host: chang.unx.sas.com
- References: <4cfrc5$gsc@misery.millcomm.com>
- Organization: SAS Institute Inc.
-
-
- In article <4cfrc5$gsc@misery.millcomm.com>, llucius@millcomm.com (Yambo) writes:
-
- |> if ( tmpbuf[0] & 0x1f == 1 )
-
- Try this instead:
-
- if ( (tmpbuf[0] & 0x1f) == 1)
-
- == has a higher precedence than &
-
- --
- ***** / walker@unx.sas.com
- *|_o_o|\\ Doug Walker< BIX, Portal: djwalker
- *|. o.| || \ AOL: weissblau
- | o |//
- ======
- Any opinions expressed are mine, not those of SAS Institute, Inc.
-
-